/* /magic/Pick a Card.css */

*:focus {outline: none;} /* prevents outline on clicked items */
* { /* reset */
	padding:0;
	margin:0;
	box-sizing:border-box;
}
body { /* prevents text selection */
	-webkit-user-select: none; /* Safari 3.1+ */
	-moz-user-select: none; /* Firefox 2+ */
	-ms-user-select: none; /* IE 10+ */
	user-select: none; /* Standard syntax */
}
body {
	background-color:ivory;
	font-family:sans-serif;
}
button {
	margin-top:30px;
	padding:3px 10px 5px 12px;
	font-size:16px;
	border-radius: 20%;
	background-color: burlywood;
	color:navy;
	cursor: pointer;
}
p {
	margin-bottom:10px;
}
#head {
	padding-top: .5vw;
	display:flex;
	align-items: center;
	justify-content: space-around;
}
#head div img {
	width:80%;
	display:block;
	margin:0 auto;
}
#title {
	font-style: italic;
	color:#00f;
	font-size:16px;
}
#rest {
	display:flex;
	flex-direction:column;
	height:90vh;
	align-items: center;
	justify-content: center;
}
#msg {
	font-size:20px;
	font-style:italic;
	color:navy;
	text-align: center;
	margin-top:20px;
}
#cards {
	display:none;
	justify-content:space-around;
}
#cards img {
	width:15vmin;
	height:22vmin;
}
#wizard {
	display:none;
	width:70vw;
	max-width:500px;
}
@media screen and (orientation:landscape) {
	.country {
		font-size: 16px;
		padding: 0;
	}
	button {
		font-size:20px;
	}
	#msg {
		font-size:30px;
	}
}
